home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 27 / CU Amiga Magazine's Super CD-ROM 27 (1998)(EMAP Images)(GB)[!][issue 1998-10].iso / CUCD / Programming / JForth / Extras / Clone / ClonePrep < prev    next >
Encoding:
Text File  |  1992-01-27  |  1.1 KB  |  34 lines

  1. \
  2. \ These variables are used to control CLONE runtime behavior...
  3.  
  4.  
  5. EXISTS? clone
  6. .IF
  7.  
  8.   Tracking off          \ do NOT automatically track memory allocations
  9.                         \ and file opening  (save memory, I already clean up)
  10.  
  11.   NoConsole on          \ I do not open a CLI window, so do not waste memory
  12.                         \ on EMIT, KEY or ?TERMINAL
  13.  
  14.   4096 StackSize !      \ runtime data stack size (to adj runtime, use
  15.                         \ WorkBench "INFO" menu choice.
  16.  
  17.   256 DictionarySize !  \ 128 for HERE dict, rest for PAD. must be >= 192
  18.  
  19.   Enable_Cancel off     \ useful only if 'NoConsole' (above) is FALSE or OFF
  20.                         \ set TRUE/ON to allow ^C,^D,^E or ^F cancels
  21.  
  22.  \ The DEFERed words USERCLEANUP and ERRORCLEANUP must be initialized
  23.  \ in your program, at runtime.  Setting them here does not work.
  24.  
  25. .ELSE
  26.  
  27.   cr ." 'CLONEPREP' must be INCLUDE'd on top of an image that contains"
  28.   cr ."             CLONE.  It is usually kept in the working directory"
  29.   cr ."             of your current project, and INCLUDE'd just before"
  30.   cr ."             CLONING to set CLONE's run-time behavior."
  31.   cr cr
  32.  
  33. .THEN
  34.